/* 信息公开样式 */
.info-disclosure {
    background: url('../images/bg_5.png') repeat;
    background-size: 1920px 855px;
    background-position: center;
    height: 1055px;
    display: flex;
    padding-top: 150px;
    align-items: center;
    z-index: 1;
    position: relative;
}

.info-container {
    width: var(--width-section);
    margin: 0 auto;
}

.info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.info-title img {
    max-width: 100%;
    height: auto;
}

.info-more a {
    color: var(--mainColor);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.info-more a:hover {
    color: var(--mainColor);
}

.info-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.info-left {
    flex: 0 0 50%;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.info-right {
    flex: 1;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.info-left.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.info-right.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.info-left .info-swiper {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.info-left.animate-in .info-swiper {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.info-right .info-tabs,
.info-right .info-lists {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.info-right.animate-in .info-tabs {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.info-right.animate-in .info-lists {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.info-right .list-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-out;
}

.info-right.animate-in .list-item {
    opacity: 1;
    transform: translateY(0);
}

.info-right.animate-in .list-item:nth-child(1) {
    transition-delay: 0.6s;
}

.info-right.animate-in .list-item:nth-child(2) {
    transition-delay: 0.7s;
}

.info-right.animate-in .list-item:nth-child(3) {
    transition-delay: 0.8s;
}

.info-right.animate-in .list-item:nth-child(4) {
    transition-delay: 0.9s;
}

.info-right.animate-in .list-item:nth-child(5) {
    transition-delay: 1.0s;
}

.info-right.animate-in .list-item:nth-child(6) {
    transition-delay: 1.1s;
}

.info-right.animate-in .list-item:nth-child(7) {
    transition-delay: 1.2s;
}

.info-right.animate-in .list-item:nth-child(8) {
    transition-delay: 1.3s;
}

.info-swiper {
    width: 600px;
    height: 508px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.info-swiper .swiper-slide {
    position: relative;
}

.info-swiper .swiper-slide img {
    width: 100%;
    height: 508px;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.info-swiper .swiper-slide img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.info-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    color: white;
}

.slide-title h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.slide-title h3 a {
    color: inherit;
    text-decoration: none;
    display: block;
    transition: opacity 0.3s ease;
}

.slide-title h3 a:hover {
    opacity: 0.8;
}

.info-pagination {
    bottom: 70px !important;
}

.info-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.info-pagination .swiper-pagination-bullet-active {
    background: white;
}

.info-right {
    flex: 1;
}

.info-tabs {
    display: flex;
    margin-bottom: 20px;
}

.tab-item {
    padding: 15px 30px;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    transition: all 0.3s ease;
}

.tab-item.active {
    color: #fff;
    background-color: var(--mainColor);
    font-weight: 500;
}

.tab-item:hover {
    font-weight: bold;
}

.list-content {
    display: none;
}

.list-content.active {
    display: block;
}

.item-date {
    font-size: 12px;
    white-space: nowrap;
    margin-left: 15px;
    border-right: 1px solid #e7e7e7;
    padding-right: 15px;
    margin-right: 15px;
}

.day {
    font-size: 24px;
    font-weight: bold;
    color: var(--mainColor);
    display: block;
    text-align: center;
}

.month {
    font-size: 12px;
    color: var(--mainColor);
}

.list-item:not(.first-item) .item-date {
    margin-left: 0;
    margin-right: 15px;
}

.list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e7e7e7;
    transition: background-color 0.3s ease;
}

.list-item:hover {
    background-color: rgba(49, 106, 180, 0.05);
    padding-left: 10px;
    padding-right: 10px;
    margin-left: -10px;
    margin-right: -10px;
    border-radius: 4px;
}

.list-item.first-item {
    flex-direction: row-reverse;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.list-item.first-item .item-text {
    color: var(--mainColor);
    font-weight: bold;
}

.item-text {
    flex: 1;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.item-text a {
    color: inherit;
    text-decoration: none;
    display: block;
    transition: opacity 0.3s ease;
}

.item-text a:hover {
    opacity: 0.8;
}

.list-item.first-item .item-text a {
    color: inherit;
}

.item-date {
    font-size: 12px;
    color: #999;
    white-space: nowrap;
    margin-left: 15px;
}

.list-item:not(.first-item) .item-date {
    margin-left: 0;
    margin-right: 15px;
}

@media (max-width: 1200px) {
    .info-content {
        flex-direction: column;
        gap: 30px;
    }

    .info-left {
        flex: none;
        width: 100%;
    }

    .info-swiper {
        width: 100%;
        max-width: 696px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .info-disclosure {
        padding: 40px 0;
    }

    .info-container {
        padding: 0 20px;
    }

    .info-header {
        gap: 20px;
        text-align: center;
    }

    .info-swiper {
        height: 300px;
    }

    .info-swiper .swiper-slide img {
        height: 300px;
    }

    .info-tabs {
        justify-content: center;
    }

    .tab-item {
        padding: 12px 20px;
        font-size: 14px;
    }
}